
body{
    background-color: #fafafa;
}
.form-section{
  
    position: relative;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainbody{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Inter, sans-serif;
}
.header  h2{
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}
.header  h2 span{
    color: #4faf8e;
    text-decoration: wavy;
    /* text-decoration: underline; */
    text-underline-position:  under;
}

.google_signup{
    border-radius: 20px;
    border: solid 1px #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.signup_container{
    background-color: #fff;
    margin: 20px 0px;
    padding: 40px ;
    border: solid 1px #ddd;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:  10px;
    box-shadow: -2px -2px 6px rgba(0,107,194,.12), 2px 2px 6px rgba(0,107,194,.12);
    border-radius: 12px;
}

.or{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.or p{
    background-color: #fff;
    z-index: 9;
}
.or .border{
    margin-top: -27px;
    color: #4faf8e;
    width: 100%;
}

button{
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.signup_button{
    background-color: #4faf8e;
    color: white;

}
.email_signup {
    display:flex;
    flex-direction: column;
    gap: 35px;
}
.email_signup p{
    text-align: left;
    line-height: 1px;
}
.email_signup input{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: solid 1px #ddd;
    outline:  #4faf8e;

}

.name{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: left;
}

.firstname{
    width: 100%;
}

.lastname{
    width: 100%;
}


@media (max-width: 980px) {
    .mainbody .header{
        display: block;
        text-align: left;
    }

    .signup_container{
        margin: 0px;
        border: none;
        padding: 0;

    }
} 